home *** CD-ROM | disk | FTP | other *** search
- /*⁄ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒø
- ›≥ Program Name: INCLUDE1.CH Copyright: Gallagher Computing,Inc. ≥
- ›≥ Date Created: 07/03/92 Language: Clipper 5.0 ≥
- ›≥ Time Created: 13:44:58 Author: Kevin S Gallagher ≥
- ›¿ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒŸ
- flflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfl */
-
- #include "box.ch"
- #include "inkey.ch"
- #include "memoedit.ch"
- #include "ftint86.ch"
- #include "fileio.ch"
- #include "Achoice.ch"
- #include "directry.ch"
- #include "ftmenuto.ch"
-
- #define INFO_SIZE 1
- #define POS_YEAR_MON 2
- #define POS_MON_DAY 3
- #define POS_MINUTES 4
- #define POS_MIN_HOUR 5
- #define POS_ORIGINAL 6
- #define POS_PACKED 7
- #define CB_FINISHED 8
- #define CB_FILE_TYPE 9
- #define CB_FILE_NAME 10
-
- // Defines position in the PACKED FILES INFO array
- #define F_NAME_LONG 2
- #define F_ORIGINAL 5
- #define F_PACKED 6
- #define F_RATIO 7
- #define F_COMPRESS 8
- #define F_NUMBER 9
-
- #define KG_SPACE 32
- #undef K_SPACEBAR
- #define K_SPACEBAR 32
- #define TRUE .T.
- #define FALSE .F.
- #define AND .AND.
- #define EQ ==
-
-
- #define MR MAXROW()
- #define MC MAXCOL()+1
- #define CURDRV FT_DEFAULT() //ƒƒ get or change [d:]
- #define XPATH FT_DEFAULT()+":\"+CURDIR(FT_DEFAULT())
-
- #define sBlock { | x | VAL( SUBSTR(x,1,2)) == nParm }
- #define SaveFullScreen() oldscrn := SAVESCREEN( 0, 0, MR, MC )
- #define RestFullScreen() RESTSCREEN( 0, 0, MR, MC, oldscrn )
- #define TBc {'G+','BG','R+','B','G+','RB','R+','BG+','R','B+','G','RB+'}
- #define WB "W+/B"
- #define YB "GR+/B"
-
- *****************************************************************************
- *±± UDC for function ZoomBox ±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±*
- *****************************************************************************
- #xcommand ZOOMBOX [ TOPROW <nTR> ] ;
- [ TOPCOL <nTC> ] ;
- [ BOTTOMROW <nBR> ] ;
- [ BOTTOMCOL <nBC> ] ;
- [ COLOR <cClrs> ] ;
- [ DELAY <nDelay> ] ;
- [ SHADOW <lShad> ] ;
- => ;
- ZoomBox( <nTR> , ;
- <nTC> , ;
- <nBR> , ;
- <nBC> , ;
- <cClrs> , ;
- <nDelay> , ;
- <lShad> )
-
- #xtranslate LSTRINT( < n > ) => LTRIM( STR( INT( < n > ) ) )
-
- #xcommand DEFAULT < x > TO < y > => < x > :=IF( < y > == NIL, < y >, < x > )
-
- #xcommand STABILIZE <x> => DISPBEGIN();;
- WHILE !(<x>:stabilize());;
- END;;
- DISPEND()
-
-
-